3.8.98 \(\int (-a-b x)^{-n} (a+b x)^n \, dx\)

Optimal. Leaf size=21 \[ x (-a-b x)^{-n} (a+b x)^n \]

________________________________________________________________________________________

Rubi [A]  time = 0.00, antiderivative size = 21, normalized size of antiderivative = 1.00, number of steps used = 2, number of rules used = 2, integrand size = 20, \(\frac {\text {number of rules}}{\text {integrand size}}\) = 0.100, Rules used = {23, 8} \begin {gather*} x (-a-b x)^{-n} (a+b x)^n \end {gather*}

Antiderivative was successfully verified.

[In]

Int[(a + b*x)^n/(-a - b*x)^n,x]

[Out]

(x*(a + b*x)^n)/(-a - b*x)^n

Rule 8

Int[a_, x_Symbol] :> Simp[a*x, x] /; FreeQ[a, x]

Rule 23

Int[(u_.)*((a_) + (b_.)*(v_))^(m_)*((c_) + (d_.)*(v_))^(n_), x_Symbol] :> Dist[(a + b*v)^m/(c + d*v)^m, Int[u*
(c + d*v)^(m + n), x], x] /; FreeQ[{a, b, c, d, m, n}, x] && EqQ[b*c - a*d, 0] &&  !(IntegerQ[m] || IntegerQ[n
] || GtQ[b/d, 0])

Rubi steps

\begin {align*} \int (-a-b x)^{-n} (a+b x)^n \, dx &=\left ((-a-b x)^{-n} (a+b x)^n\right ) \int 1 \, dx\\ &=x (-a-b x)^{-n} (a+b x)^n\\ \end {align*}

________________________________________________________________________________________

Mathematica [A]  time = 0.00, size = 21, normalized size = 1.00 \begin {gather*} x (-a-b x)^{-n} (a+b x)^n \end {gather*}

Antiderivative was successfully verified.

[In]

Integrate[(a + b*x)^n/(-a - b*x)^n,x]

[Out]

(x*(a + b*x)^n)/(-a - b*x)^n

________________________________________________________________________________________

IntegrateAlgebraic [A]  time = 0.03, size = 25, normalized size = 1.19 \begin {gather*} \frac {(-a-b x)^{-n} (a+b x)^{n+1}}{b} \end {gather*}

Antiderivative was successfully verified.

[In]

IntegrateAlgebraic[(a + b*x)^n/(-a - b*x)^n,x]

[Out]

(a + b*x)^(1 + n)/(b*(-a - b*x)^n)

________________________________________________________________________________________

fricas [A]  time = 2.63, size = 6, normalized size = 0.29 \begin {gather*} x \cos \left (\pi n\right ) \end {gather*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate((b*x+a)^n/((-b*x-a)^n),x, algorithm="fricas")

[Out]

x*cos(pi*n)

________________________________________________________________________________________

giac [A]  time = 1.15, size = 1, normalized size = 0.05 \begin {gather*} x \end {gather*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate((b*x+a)^n/((-b*x-a)^n),x, algorithm="giac")

[Out]

x

________________________________________________________________________________________

maple [A]  time = 0.02, size = 26, normalized size = 1.24 \begin {gather*} x \,{\mathrm e}^{n \ln \left (b x +a \right )} {\mathrm e}^{-n \ln \left (-b x -a \right )} \end {gather*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

int((b*x+a)^n/((-b*x-a)^n),x)

[Out]

x*exp(n*ln(b*x+a))/exp(n*ln(-b*x-a))

________________________________________________________________________________________

maxima [A]  time = 0.99, size = 5, normalized size = 0.24 \begin {gather*} \left (-1\right )^{n} x \end {gather*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate((b*x+a)^n/((-b*x-a)^n),x, algorithm="maxima")

[Out]

(-1)^n*x

________________________________________________________________________________________

mupad [B]  time = 1.26, size = 21, normalized size = 1.00 \begin {gather*} \frac {x\,{\left (a+b\,x\right )}^n}{{\left (-a-b\,x\right )}^n} \end {gather*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

int((a + b*x)^n/(- a - b*x)^n,x)

[Out]

(x*(a + b*x)^n)/(- a - b*x)^n

________________________________________________________________________________________

sympy [A]  time = 7.05, size = 44, normalized size = 2.10 \begin {gather*} \begin {cases} - \frac {a \left (- a - b x\right )^{- n} \left (a + b x\right )^{n}}{b} + x \left (- a - b x\right )^{- n} \left (a + b x\right )^{n} & \text {for}\: b \neq 0 \\a^{n} x \left (- a\right )^{- n} & \text {otherwise} \end {cases} \end {gather*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate((b*x+a)**n/((-b*x-a)**n),x)

[Out]

Piecewise((-a*(-a - b*x)**(-n)*(a + b*x)**n/b + x*(-a - b*x)**(-n)*(a + b*x)**n, Ne(b, 0)), (a**n*x*(-a)**(-n)
, True))

________________________________________________________________________________________